home *** CD-ROM | disk | FTP | other *** search
/ PC Home 49 / PC_Home_Issue_49.iso / lldemo / lldemo.shr / ROSETTA.EXE / ROSETTA.DXR / 00590_toggle scripts.ls < prev    next >
Encoding:
Text File  |  1996-06-24  |  277 b   |  17 lines

  1. on toggleScore
  2.   global gScore
  3.   set gScore to not gScore
  4.   drawScore()
  5. end
  6.  
  7. on toggleMenu
  8.   global gMenu, gInPlay
  9.   set gMenu to not gMenu
  10.   if gMenu then
  11.     installMenu(3)
  12.     set the enabled of menuItem 2 of menu "Special" to gInPlay
  13.   else
  14.     installMenu(0)
  15.   end if
  16. end
  17.